home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 1 (Walnut Creek)
/
Aminet - June 1993 [Walnut Creek].iso
/
aminet
/
comm
/
misc
/
xprzedzap090.lzh
/
Libent.a
< prev
next >
Wrap
Text File
|
1992-11-30
|
661b
|
43 lines
include "exec/types.i"
include "exec/resident.i"
include "exec/nodes.i"
include "exec/libraries.i"
VERSION equ 0
PRI equ 0
xref _LibID
xref _LibName
xref RESLEN
xref _BSSBAS * linker defined base of BSS
xref _BSSLEN * linker defined length of BSS
xref _LibFuncTab
xref _LibInitTab
SECTION text,CODE ; romtag must be in first hunk
CNOP 4
xref _LibInit
xdef _LibRomTag
moveq #0,d0
rts
_LibRomTag:
dc.w RTC_MATCHWORD
dc.l _LibRomTag
dc.l endtag
dc.b RTF_AUTOINIT
dc.b VERSION
dc.b NT_LIBRARY
dc.b PRI
dc.l _LibName
dc.l _LibID
dc.l _LibInitTab
endtag:
section __MERGED,data
xdef _Libmergeddata
_Libmergeddata dc.l 0
end